home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Games / PC-SIG World of Games (CDRM1080710) (1993).iso / 2984 / INSTALL.BAT < prev   
DOS Batch File  |  1992-01-25  |  1KB  |  46 lines

  1. @echo off
  2. cls
  3. echo  This command file will copy all files from the First Expedition
  4. echo  floppy to the hard drive.  To use it properly, you have defined
  5. echo  a directory on your hard drive to store the game. You have used 
  6. echo  the DOS Change Directory (CD) command  to  make  that directory
  7. echo  the current directory on  the  hard  drive.     You  have  then
  8. echo  entered the following from the DOS prompt:
  9. echo.
  10. echo  a:INSTALL a x 
  11. echo.
  12. echo  where the 'a' is the drive the floppy is in.   Make  it  a B if
  13. echo  you are using drive B.  The 'x' is the letter of the hard drive
  14. echo  you  want to copy the files to. You do not specify a path since
  15. echo  the  files  will  go  to  the  current  directory set  for that
  16. echo  drive and you have put yourself in that  subdirectory  per  the
  17. echo  above instructions.
  18. echo.
  19. echo  Now.... if everything is okay, press any key... 
  20. echo  Otherwise, press Ctrl-C to exit.
  21. echo.
  22. pause
  23. echo.
  24. echo.
  25. if "%1"=="" goto baddrive
  26. if "%2"=="" goto baddrive
  27. copy %1:\ex1\*.* %2:
  28. cls
  29. echo  Copying complete for this floppy.
  30. echo.
  31. goto end
  32. :baddrive
  33. cls
  34. echo.
  35. echo  I thought we had an agreement.  You enter
  36. echo.
  37. echo  a:INSTALL a x 
  38. echo.
  39. echo  with 'a' being the 'from' floppy drive and 'x' being the letter
  40. echo  of the hard drive to copy the files to and I would copy all the
  41. echo  files for you....  
  42. echo  But no!  You had to go and do something else....
  43. echo.
  44. :end
  45.  
  46.